home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-05-21 | 390 b | 29 lines |
- /* $Id: Region.java,v 1.2 1996/03/22 17:31:48 djun Exp $
-
- File: Region.java
-
- Defines the class Region. This is a simple closed polygonal path
- of Points bounding a region.
-
- Author: Djun M. Kim
- Copyright (c) 1996 Djun M. Kim. All rights reserved.
-
- */
-
-
- import java.awt.*;
-
- public class Region {
-
- public Polygon perim;
-
- Region() {
- perim = new Polygon();
- }
-
- }
-
-
-
-
-